home *** CD-ROM | disk | FTP | other *** search
/ Max Calendar 2002 / Max Calendar 2002.iso / pc / Data / intro.dxr / 00007_controllo rollOver.ls < prev    next >
Encoding:
Text File  |  2001-10-17  |  438 b   |  13 lines

  1. global gMousePos
  2.  
  3. on mouseEnter me
  4.   gMousePos = the locH of sprite me.spriteNum
  5.   set the member of sprite the spriteNum of me to member(the memberNum of sprite me.spriteNum + 1)
  6.   set the member of sprite 24 to member(the memberNum of sprite me.spriteNum + 1)
  7. end
  8.  
  9. on mouseLeave me
  10.   set the member of sprite the spriteNum of me to member(the memberNum of sprite me.spriteNum - 1)
  11.   set the member of sprite 24 to member("vuo_rol")
  12. end
  13.